home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / nss / pkistore.h < prev    next >
C/C++ Source or Header  |  2006-04-20  |  5KB  |  192 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is the Netscape security libraries.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1994-2000
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. #ifndef PKISTORE_H
  38. #define PKISTORE_H
  39.  
  40. #ifdef DEBUG
  41. static const char PKISTORE_CVS_ID[] = "@(#) $RCSfile: pkistore.h,v $ $Revision: 1.7 $ $Date: 2005/01/20 02:25:49 $";
  42. #endif /* DEBUG */
  43.  
  44. #ifndef NSSPKIT_H
  45. #include "nsspkit.h"
  46. #endif /* NSSPKIT_H */
  47.  
  48. #ifndef BASE_H
  49. #include "base.h"
  50. #endif /* BASE_H */
  51.  
  52. PR_BEGIN_EXTERN_C
  53.  
  54. /* 
  55.  * PKI Stores
  56.  *
  57.  * This is a set of routines for managing local stores of PKI objects.
  58.  * Currently, the only application is in crypto contexts, where the
  59.  * certificate store is used.  In the future, methods should be added
  60.  * here for storing local references to keys.
  61.  */
  62.  
  63. /* 
  64.  * nssCertificateStore
  65.  *
  66.  * Manages local store of certificate, trust, and S/MIME profile objects.
  67.  * Within a crypto context, mappings of cert to trust and cert to S/MIME
  68.  * profile are always 1-1.  Therefore, it is reasonable to store all objects
  69.  * in a single collection, indexed by the certificate.
  70.  */
  71.  
  72. NSS_EXTERN nssCertificateStore *
  73. nssCertificateStore_Create
  74. (
  75.   NSSArena *arenaOpt
  76. );
  77.  
  78. NSS_EXTERN PRStatus
  79. nssCertificateStore_Destroy
  80. (
  81.   nssCertificateStore *store
  82. );
  83.  
  84. NSS_EXTERN PRStatus
  85. nssCertificateStore_Add
  86. (
  87.   nssCertificateStore *store,
  88.   NSSCertificate *cert
  89. );
  90.  
  91. NSS_EXTERN void
  92. nssCertificateStore_RemoveCertLOCKED
  93. (
  94.   nssCertificateStore *store,
  95.   NSSCertificate *cert
  96. );
  97.  
  98. NSS_EXTERN void
  99. nssCertificateStore_Lock (
  100.   nssCertificateStore *store
  101. );
  102.  
  103. NSS_EXTERN void
  104. nssCertificateStore_Unlock (
  105.   nssCertificateStore *store
  106. );
  107.  
  108. NSS_EXTERN NSSCertificate **
  109. nssCertificateStore_FindCertificatesBySubject
  110. (
  111.   nssCertificateStore *store,
  112.   NSSDER *subject,
  113.   NSSCertificate *rvOpt[],
  114.   PRUint32 maximumOpt,
  115.   NSSArena *arenaOpt
  116. );
  117.  
  118. NSS_EXTERN NSSCertificate **
  119. nssCertificateStore_FindCertificatesByNickname
  120. (
  121.   nssCertificateStore *store,
  122.   NSSUTF8 *nickname,
  123.   NSSCertificate *rvOpt[],
  124.   PRUint32 maximumOpt,
  125.   NSSArena *arenaOpt
  126. );
  127.  
  128. NSS_EXTERN NSSCertificate **
  129. nssCertificateStore_FindCertificatesByEmail
  130. (
  131.   nssCertificateStore *store,
  132.   NSSASCII7 *email,
  133.   NSSCertificate *rvOpt[],
  134.   PRUint32 maximumOpt,
  135.   NSSArena *arenaOpt
  136. );
  137.  
  138. NSS_EXTERN NSSCertificate *
  139. nssCertificateStore_FindCertificateByIssuerAndSerialNumber
  140. (
  141.   nssCertificateStore *store,
  142.   NSSDER *issuer,
  143.   NSSDER *serial
  144. );
  145.  
  146. NSS_EXTERN NSSCertificate *
  147. nssCertificateStore_FindCertificateByEncodedCertificate
  148. (
  149.   nssCertificateStore *store,
  150.   NSSDER *encoding
  151. );
  152.  
  153. NSS_EXTERN PRStatus
  154. nssCertificateStore_AddTrust
  155. (
  156.   nssCertificateStore *store,
  157.   NSSTrust *trust
  158. );
  159.  
  160. NSS_EXTERN NSSTrust *
  161. nssCertificateStore_FindTrustForCertificate
  162. (
  163.   nssCertificateStore *store,
  164.   NSSCertificate *cert
  165. );
  166.  
  167. NSS_EXTERN PRStatus
  168. nssCertificateStore_AddSMIMEProfile
  169. (
  170.   nssCertificateStore *store,
  171.   nssSMIMEProfile *profile
  172. );
  173.  
  174. NSS_EXTERN nssSMIMEProfile *
  175. nssCertificateStore_FindSMIMEProfileForCertificate
  176. (
  177.   nssCertificateStore *store,
  178.   NSSCertificate *cert
  179. );
  180.  
  181. NSS_EXTERN void
  182. nssCertificateStore_DumpStoreInfo
  183. (
  184.   nssCertificateStore *store,
  185.   void (* cert_dump_iter)(const void *, void *, void *),
  186.   void *arg
  187. );
  188.  
  189. PR_END_EXTERN_C
  190.  
  191. #endif /* PKISTORE_H */
  192.